.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  background: white;
  width: 300px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #A03234, #c16768);
  transition: all 0.5s ease;
  z-index: 0;
}

.card:hover::before {
  left: 0;
}

.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card-content {
  position: relative;
  z-index: 1;
  color: #333;
  transition: color 0.5s ease;
}

.card:hover .card-content {
  color: #fff;
}

.card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsivo */
@media (max-width: 768px) {
  .card {
    width: 100%;
    max-width: 320px;
  }
}
